Import statement Global declaration Statements ---------- ---------
Arguments | Arguments |
---|---|
objects | Object to the printed. * indicates that there may be more than one object |
separator | Optional. objects are separated by separator. Default value: ' ' |
end | Optional. end is printed at last Default is '\n'. |
file | Optional. Must be an object with write(string) method. If omitted it, sys.stdout will be used which prints objects on the screen. |
flush | Optional. If True, the stream is forcibly flushed. Default value: False |
print("Welcome to Python")
>>>Welcome to Python